summaryrefslogtreecommitdiffstats
path: root/install.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-09-25 00:31:34 +0200
committerTianjie Xu <xunchang@google.com>2016-09-29 20:27:46 +0200
commit68fc81e860ab58a5147a48093e57daab38ee84a3 (patch)
treea2e264ba51c1e6848306371a1123d4bd79fe7a85 /install.cpp
parentMerge "Report uncrypt errors in details" am: af8b9363c6 am: 7582609d61 (diff)
downloadandroid_bootable_recovery-68fc81e860ab58a5147a48093e57daab38ee84a3.tar
android_bootable_recovery-68fc81e860ab58a5147a48093e57daab38ee84a3.tar.gz
android_bootable_recovery-68fc81e860ab58a5147a48093e57daab38ee84a3.tar.bz2
android_bootable_recovery-68fc81e860ab58a5147a48093e57daab38ee84a3.tar.lz
android_bootable_recovery-68fc81e860ab58a5147a48093e57daab38ee84a3.tar.xz
android_bootable_recovery-68fc81e860ab58a5147a48093e57daab38ee84a3.tar.zst
android_bootable_recovery-68fc81e860ab58a5147a48093e57daab38ee84a3.zip
Diffstat (limited to 'install.cpp')
-rw-r--r--install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.cpp b/install.cpp
index 63ee299a2..83ddc4b0c 100644
--- a/install.cpp
+++ b/install.cpp
@@ -536,7 +536,7 @@ install_package(const char* path, bool* wipe_cache, const char* install_file,
std::string uncrypt_status;
if (!android::base::ReadFileToString(UNCRYPT_STATUS, &uncrypt_status)) {
PLOG(WARNING) << "failed to read uncrypt status";
- } else if (!android::base::StartsWith(uncrypt_status, "uncrypt_:")) {
+ } else if (!android::base::StartsWith(uncrypt_status, "uncrypt_")) {
PLOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status;
} else {
log_buffer.push_back(android::base::Trim(uncrypt_status));